home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Actual 27
/
CDROM27.iso
/
share
/
progra
/
mai
/
Date-Time, Determining leap year
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1997-07-16
|
239 b
|
9 lines
Description: Function returns True if year is a leap year
'Function IsLeapYear(ByVal sYear As String) As Boolean
If IsDate("02/29/" & sYear) Then
IsLeapYear = True
Else
IsLeapYear = False
End If
'End Function